home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Graphics Programming (2nd Edition) / Visual Basic Graphics Programming 2nd Edition.iso / OldSrc / README.TXT < prev   
Text File  |  1997-01-10  |  1KB  |  28 lines

  1. Four problems were encountered when testing a prerelease version of 
  2. Visual Basic 5.0. These problems are summarized here so you will 
  3. recognize them if you encounter them yourself.
  4.  
  5. 1. (Chapter 1) If you omit color, Visual basic's PSet routine should 
  6. use the color specified by the ForeColor property of the form or 
  7. picture box drawing the point. In the prerelease version of Visual 
  8. Basic 5.0, PSet ignored ForeColor and set the point in black. If you 
  9. have this problem, try explicitly telling PSet what color to use.
  10.  
  11. 2. (Chapter 3) In Visual Basic 4.0 the Printer's ForeColor property 
  12. defaults to &H80000008. This produces a solid black line. In the 
  13. prerelease version of Visual Basic 5.0, ForeColor defaulted to 0. This 
  14. produced a broken line made up of dots (though the value 0 draws a 
  15. solid line in Visual Basic 4.0). If you have this problem, explicitly 
  16. set the Printer object's ForeColor to &H80000008.
  17.  
  18. 3. (Chapter 3) Visual Basic 5.0 makes some changes to color palettes. 
  19. In the prerelease version palettes did not always behave as expected. 
  20. In example program RGBCOLOR, the middle picture box managed to use 
  21. colors defined by the third picture box even though they were not 
  22. defined in its color palette.
  23.  
  24. 4. (Chapter 3) Example program PALEDIT also had palette problems in 
  25. the prerelease version. Due to complications in using PC_EXPLICIT 
  26. palette entries, the colors displayed do not correctly match the 
  27. system entries.
  28.